home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / c01oop.zip / CPPWKBK / CPPV2-5.C < prev    next >
C/C++ Source or Header  |  1992-08-25  |  216b  |  14 lines

  1. #define HEADER "C++ Problem 2.5 by Rick Conn using Borland C++"
  2.  
  3. #include <stdio.h>
  4.  
  5. void main(void)
  6. {
  7.   printf("%s\n", HEADER);
  8.  
  9.   puts("This is a test\n");
  10.   int i;
  11.   i = 5;
  12.   printf("I = %d\n", i);
  13. }
  14.